/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    visibility: hidden;
}

.cookie-consent-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Dark Mode Support */
body.dark-mode .cookie-consent-banner {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 32px;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary, #111);
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary, #444);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary, #444);
    border: 1px solid var(--border-color, #ddd);
}

.cookie-btn-reject:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.dark-mode .cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-btn-accept {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.dark-mode .cookie-btn-accept {
    background: #fff;
    color: #000;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}